home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / src / binutils.252 / binutils / makefile < prev    next >
Encoding:
Makefile  |  1994-12-17  |  19.9 KB  |  612 lines

  1. # Makefile generated by "configure.bat"
  2. # Makefile for GNU binary-file utilities
  3. # Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
  4.  
  5. # This file is part of GNU binutils.
  6.  
  7. # This program is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation; either version 2 of the License, or
  10. # (at your option) any later version2.
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. # GNU General Public License for more details.
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  
  19. srcdir = .
  20.  
  21. prefix = /usr/local
  22.  
  23. program_transform_name =
  24. exec_prefix = $(prefix)
  25. bindir = $(exec_prefix)/bin
  26. libdir = $(exec_prefix)/lib
  27. tooldir = $(exec_prefix)/$(target_alias)
  28.  
  29. datadir = $(prefix)/lib
  30. mandir = $(prefix)/man
  31. man1dir = $(mandir)/man1
  32. man2dir = $(mandir)/man2
  33. man3dir = $(mandir)/man3
  34. man4dir = $(mandir)/man4
  35. man5dir = $(mandir)/man5
  36. man6dir = $(mandir)/man6
  37. man7dir = $(mandir)/man7
  38. man8dir = $(mandir)/man8
  39. man9dir = $(mandir)/man9
  40. infodir = $(prefix)/info
  41. includedir = $(prefix)/include
  42. docdir = $(datadir)/doc
  43.  
  44. SHELL = /bin/sh
  45.  
  46. INSTALL = `cd $(srcdir)/..;pwd`/install.sh -c
  47. INSTALL_PROGRAM = $(INSTALL)
  48. INSTALL_DATA = $(INSTALL) 
  49. INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
  50. INSTALL_XFORM1 = $(INSTALL_XFORM) -b=.1
  51.  
  52. AR = ar
  53. AR_FLAGS = qv
  54. CFLAGS = -g
  55. MAKEINFO = makeinfo
  56. TEXI2DVI = texi2dvi
  57. RANLIB = ranlib
  58. BISONFLAGS = -d
  59. TEXI2ROFF=texi2roff
  60. MAKEOVERRIDES=
  61. CC_FOR_BUILD = $(CC)
  62. NM_FOR_TARGET = nm
  63. NM = $(NM_FOR_TARGET)
  64. SYMLINK = ln -s
  65.  
  66. BISON = bison -y
  67. # Comment these out if using lex.
  68. LEX_OPTIONS = -I -Cem 
  69. LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi`
  70.  
  71. # Distribution version
  72. VERSION=2.5.2
  73. # Distribution name
  74. DIST_NAME=binutils-${VERSION}
  75.  
  76. version=`./../gcc/gcc -dumpversion`
  77.  
  78. # Where to find texinfo.tex to format docn with TeX
  79. TEXIDIR = $(srcdir)/../texinfo
  80.  
  81. #CC=gcc -Wall
  82. CC=cc
  83. # these two are almost the same program
  84. AR_PROG=ar
  85. RANLIB_PROG=ranlib
  86.  
  87. # objcopy and strip should be the same program
  88. OBJCOPY_PROG=objcopy
  89. STRIP_PROG=strip.new
  90.  
  91. STRINGS_PROG=strings
  92.  
  93. # These should all be the same program too.
  94. SIZE_PROG=size
  95. NM_PROG=nm.new
  96. OBJDUMP_PROG=objdump
  97.  
  98. # This is the demangler, as a standalone program.
  99. # Note: This one is used as the installed name too, unlike the above.
  100. DEMANGLER_PROG=cxxfilt
  101.  
  102. NLMCONV_PROG=nlmconv
  103.  
  104. SRCONV_PROG=srconv sysdump coffdump 
  105.  
  106. MANPAGES= ar nm objdump ranlib size strings strip objcopy nlmconv
  107.  
  108. PROGS = $(SIZE_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRINGS_PROG) $(STRIP_PROG) $(RANLIB_PROG) $(DEMANGLER_PROG) $(OBJCOPY_PROG) $(BUILD_NLMCONV) $(BUILD_SRCONV) $(SYSINFO_PROG) 
  109. STAGESTUFF = $(PROGS) *.o
  110. # Files that can be generated, but should be in the distribution.
  111. DISTSTUFF=arparse.c arlex.c nlmheader.c sysinfo.c syslex.c info
  112.  
  113. # Stuff that goes in tooldir/ if appropriate
  114. TOOL_PROGS = nm.new strip.new ar ranlib
  115.  
  116. BASEDIR = $(srcdir)/..
  117. BFDDIR = $(BASEDIR)/bfd
  118. INCDIR    = $(BASEDIR)/include
  119. INCLUDES = -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR)
  120.  
  121. #### host and target dependant Makefile fragments come in here.
  122. CC = gcc
  123. ###
  124.  
  125. ALL_CFLAGS = $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CFLAGS)
  126.  
  127. .c.o:
  128.     $(CC) -c $(ALL_CFLAGS) $<
  129.  
  130. #
  131. ## Random definitions
  132. # Hopefully all these may be flushed once we get configuration down pat.
  133.  
  134. # alloca only needed for systems which don't have it and when cc != gcc.
  135. # ALLOCA = alloca.o
  136.  
  137. # nm tries to malloc enough space for the string table.  The old GNU malloc
  138. # rounds this up to a power of two (e.g. 5M becomes 8M), and so it might 
  139. # fail unnecessarily.  I've also seen some Unix malloc's fail, even when
  140. # there is enough memory.  So use the new GNU malloc.
  141. # MALLOC = gmalloc.o
  142. # Use this if the system malloc is good enough.
  143. MALLOC =
  144.  
  145. # Use the GNU getopt unless you have problems with it.
  146. # The IRIS version could probably benefit from being assembled with
  147. # libmalloc rather than the ordinary malloc.
  148. LIBIBERTY = ../libiberty/libiberty.a
  149.  
  150. # Code shared by all the binutils.
  151. BULIBS = bucomm.o version2.o filemode.o
  152.  
  153. ADDL_LIBS = $(MALLOC) $(BULIBS) $(BFD) $(LIBIBERTY) 
  154.  
  155. BFD = ../bfd/libbfd.a
  156. OPCODES = ../opcodes/libopcodes.a
  157.  
  158. RUNTEST = runtest
  159. RUNTESTFLAGS = 
  160. FLAGS_TO_PASS = \
  161.     "CC=$(CC)" \
  162.     "CFLAGS=$(CFLAGS)" \
  163.     "RUNTEST=$(RUNTEST)" \
  164.     "RUNTESTFLAGS=$(RUNTESTFLAGS)"
  165.  
  166. #
  167. ## The rules
  168.  
  169. all: $(ADDL_LIBS) $(PROGS)
  170.  
  171. testsuite:
  172.     if [ -f testsuite/Makefile.in ]; then \
  173.         (rootme=`pwd`/ ; export rootme ; \
  174.          rootsrc=`cd $(srcdir); pwd`/ ; export rootsrc ; \
  175.          cd testsuite; $(MAKE) FLAGS_TO_PASS=$(FLAGS_TO_PASS)); \
  176.     else true ; fi
  177.  
  178. check: force
  179.     rootme=`pwd`; export rootme; cd testsuite ; \
  180.     $(MAKE) check $(FLAGS_TO_PASS)
  181.  
  182. installcheck:
  183.     /bin/sh $(srcdir)/sanity.sh $(bindir)
  184.  
  185. info: binutils.info
  186.  
  187. dvi: binutils.dvi
  188.  
  189. $(SIZE_PROG): $(ADDL_LIBS) size.o $(BFD)
  190.     $(CC) $(CFLAGS) $(LDFLAGS) -o $(SIZE_PROG) size.o $(ADDL_LIBS) $(EXTRALIBS)
  191.  
  192. $(OBJCOPY_PROG): $(ADDL_LIBS) objcopy.o not-strip.o $(BFD)
  193.     $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o not-strip.o $(ADDL_LIBS) $(EXTRALIBS)
  194.  
  195. $(STRINGS_PROG): $(ADDL_LIBS) strings.o $(BFD)
  196.     $(CC) $(CFLAGS) $(LDFLAGS) -o $(STRINGS_PROG) strings.o $(ADDL_LIBS) $(EXTRALIBS)
  197.  
  198. $(STRIP_PROG): $(ADDL_LIBS) objcopy.o is-strip.o $(BFD)
  199.     $(CC) $(CFLAGS) $(LDFLAGS) -o $(STRIP_PROG) objcopy.o is-strip.o $(ADDL_LIBS) $(EXTRALIBS)
  200.  
  201. $(NM_PROG): $(ADDL_LIBS) nm.o $(BFD)
  202.     $(CC) $(CFLAGS) $(LDFLAGS) -o $(NM_PROG) nm.o $(ADDL_LIBS) $(EXTRALIBS)
  203.  
  204. $(OBJDUMP_PROG): $(ADDL_LIBS) objdump.o $(BFD) $(OPCODES)
  205.     $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJDUMP_PROG) objdump.o $(OPCODES) $(ADDL_LIBS) $(EXTRALIBS)
  206.  
  207. underscore.c: Makefile
  208.     rm -f underscore.c
  209.     echo '/*WARNING: This file is automatically generated!*/' >underscore.t
  210.     echo "int prepends_underscore = $(UNDERSCORE);" >>underscore.t
  211.     mv -f underscore.t underscore.c
  212.  
  213. version2.o: version2.c Makefile
  214.     $(CC) $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CFLAGS) -c $(srcdir)/version2.c
  215.  
  216. cplus-dem.o: $(BASEDIR)/libiberty/cplus-dem.c $(INCDIR)/getopt.h
  217.     $(CC) -c -DMAIN $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CFLAGS) $(BASEDIR)/libiberty/cplus-dem.c
  218.  
  219. $(DEMANGLER_PROG): cplus-dem.o $(LIBIBERTY) underscore.o version2.o
  220.     $(CC) $(CFLAGS) $(LDFLAGS)  -o $(DEMANGLER_PROG) cplus-dem.o $(LIBIBERTY) $(EXTRALIBS) underscore.o version2.o
  221.  
  222. arparse.o: arparse.c
  223.     $(CC) -c $(CFLAGS) $(INCLUDES) $(HDEFINES) $(TDEFINES) arparse.c
  224. arparse.c: arparse.y
  225.     bison $(BISONFLAGS) -o $@ arparse.y
  226.  
  227. # Separate from arparse.c so that a parallel make doesn't try to build
  228. # both arparse.c and arparse.h simultaneously.
  229. arparse.h: arparse.c
  230.  
  231. arlex.o: arlex.c
  232.     $(CC) -c $(CFLAGS) $(INCLUDES) $(HDEFINES) $(TDEFINES) arlex.c
  233. arlex.c: arlex.l
  234.     flex $(LEX_OPTIONS) arlex.l
  235.     mv lexyy.c arlex.c
  236.  
  237. $(AR_PROG): $(ADDL_LIBS) ar.o arparse.o arlex.o not-ranlib.o $(BFD) arsup.o
  238.     $(CC) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o arparse.o arlex.o arsup.o not-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
  239.  
  240. $(RANLIB_PROG): $(ADDL_LIBS) ar.o is-ranlib.o arparse.o arlex.o arsup.o $(BFD)
  241.     $(CC) $(CFLAGS) $(LDFLAGS) -o $(RANLIB_PROG) ar.o arparse.o arlex.o arsup.o is-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
  242.  
  243. # This rule creates a single binary that switches between ar and ranlib
  244. # by looking at argv[0].  Use this kludge to save some disk space.
  245. # However, you have to install things by hand.
  246. # (That is after 'make install', replace the installed ranlib by a link to ar.)
  247.  
  248. # Alternatively, you can install ranlib.sh as ranlib.
  249.  
  250. ar_with_ranlib: $(ADDL_LIBS) ar.o maybe-ranlib.o $(BFD)
  251.     $(CC) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
  252.     -rm -f $(RANLIB_PROG)
  253.     -ln $(AR_PROG) $(RANLIB_PROG)
  254.  
  255. # objcopy and strip in one binary that uses argv[0] to decide its action.
  256.  
  257. objcopy_with_strip: $(ADDL_LIBS) objcopy.o maybe-strip.o $(BFD)
  258.     $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o maybe-strip.o $(ADDL_LIBS) $(EXTRALIBS)
  259.     -rm -f $(STRIP_PROG)
  260.     -ln $(OBJCOPY_PROG) $(STRIP_PROG)
  261.  
  262. sysroff.c: sysinfo sysroff.info 
  263.     go32 sysinfo -c <$(srcdir)/sysroff.info >sysroff.c
  264.     go32 sysinfo -i <$(srcdir)/sysroff.info >>sysroff.c
  265.     go32 sysinfo -g <$(srcdir)/sysroff.info >>sysroff.c
  266.  
  267. sysroff.h: sysinfo sysroff.info
  268.     go32 sysinfo -d <$(srcdir)/sysroff.info >sysroff.h    
  269.  
  270. # Depend upon arparse.c to avoid building both arparse.c and sysinfo.c
  271. # simultaneously.
  272. sysinfo.c: sysinfo.y arparse.c
  273.     bison $(BISONFLAGS) -o $@ arparse.y
  274.     rm -f sysinfo.c
  275.  
  276. # Separate from sysinfo.c so that a parallel make doesn't try to build
  277. # both sysinfo.c and sysinfo.h simultaneously.
  278. sysinfo.h: sysinfo.c
  279.  
  280. syslex.c : syslex.l
  281.     flex $(LEX_OPTIONS) arlex.l
  282.     mv lexyy.c syslex.c
  283.     
  284. sysinfo: sysinfo.o syslex.o
  285.     $(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o $@ sysinfo.o syslex.o 
  286.  
  287. syslex.o: syslex.c sysinfo.h
  288.     if [ -r syslex.c ]; then \
  289.       $(CC_FOR_BUILD) -c -I. $(CFLAGS)  syslex.c  ; \
  290.     else \
  291.       $(CC_FOR_BUILD) -c -I. $(CFLAGS) $(srcdir)/syslex.c ;\
  292.     fi
  293.  
  294. sysinfo.o: sysinfo.c
  295.     if [ -r sysinfo.c ]; then \
  296.       $(CC_FOR_BUILD) -c -I. $(CFLAGS)  sysinfo.c  ; \
  297.     else \
  298.       $(CC_FOR_BUILD) -c -I. $(CFLAGS) $(srcdir)/sysinfo.c ; \
  299.     fi
  300.  
  301. srconv.o: srconv.c sysroff.h sysroff.c coffgrok.h $(INCDIR)/coff/internal.h \
  302.   ../bfd/libcoff.h
  303.  
  304. srconv: srconv.o coffgrok.o $(ADDL_LIBS)
  305.     $(CC) $(CFLAGS) $(LDFLAGS) -o $@ srconv.o coffgrok.o $(ADDL_LIBS) $(EXTRALIBS)
  306.  
  307. coffdump: coffdump.o coffgrok.o $(ADDL_LIBS)
  308.     $(CC) $(CFLAGS) $(LDFLAGS) -o $@  coffdump.o coffgrok.o $(ADDL_LIBS) $(EXTRALIBS)
  309.  
  310. sysdump.o: sysdump.c sysroff.h sysroff.c
  311.  
  312. sysdump: sysdump.o $(ADDL_LIBS)
  313.     $(CC) $(CFLAGS) $(LDFLAGS) -o $@ sysdump.o $(ADDL_LIBS) $(EXTRALIBS)
  314.  
  315. # Depend upon sysinfo.c to avoid building both nlmheader.c and sysinfo.c
  316. # simultaneously.
  317. nlmheader.c: nlmheader.y sysinfo.c
  318.     bison $(BISONFLAGS) -o $@ arparse.y
  319.     rm -f nlmheader.c
  320.  
  321. nlmconv.o: nlmconv.c
  322.     ldname=`t='$(program_transform_name)'; echo ld | sed -e "s/brokensed/brokensed/" $$t`; \
  323.     $(CC) -c -DLD_NAME="\"$${ldname}\"" $(INCLUDES) $(HDEFINES) $(TDEFINES) $(NLMCONV_DEFS) $(CFLAGS) $(srcdir)/nlmconv.c
  324.  
  325. $(NLMCONV_PROG): nlmconv.o nlmheader.o $(ADDL_LIBS) $(BFD)
  326.     $(CC) $(CFLAGS) $(LDFLAGS) -o $@ nlmconv.o nlmheader.o $(ADDL_LIBS) $(EXTRALIBS)
  327.  
  328. # This list of dependencies was generated by doing a make with gcc -MM
  329. # saving the output in a file and removing the gcc commands
  330. # changing "../../devo/binutils/../bfd" to "$(BFDDIR)"
  331. # removing "../../devo/binutils/"
  332. # changing "../include" to "$(INCDIR)"
  333.  
  334. bucomm.o: bucomm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
  335.   $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
  336.   $(INCDIR)/fopen-same.h bucomm.h
  337. filemode.o: filemode.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
  338.   $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
  339.   $(INCDIR)/fopen-same.h 
  340. size.o: size.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
  341.   $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
  342.   $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h 
  343. objdump.o: objdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
  344.   $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
  345.   $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h \
  346.   $(INCDIR)/dis-asm.h $(INCDIR)/aout/aout64.h \
  347.   $(INCDIR)/elf/internal.h $(INCDIR)/aout/stab.def 
  348. nm.o: nm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
  349.   $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
  350.   $(INCDIR)/fopen-same.h bucomm.h $(INCDIR)/getopt.h \
  351.   $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
  352.   $(INCDIR)/aout/ranlib.h $(INCDIR)/demangle.h
  353. ar.o: ar.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
  354.   $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
  355.   $(INCDIR)/fopen-same.h bucomm.h $(INCDIR)/aout/ar.h \
  356.   $(BFDDIR)/libbfd.h arsup.h 
  357. arparse.o: arparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
  358.   $(INCDIR)/obstack.h arsup.h 
  359. arlex.o: arlex.c ./arparse.h 
  360. not-ranlib.o: not-ranlib.c 
  361. arsup.o: arsup.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
  362.   $(INCDIR)/obstack.h arsup.h bucomm.h 
  363. strings.o: strings.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
  364.   $(INCDIR)/obstack.h bucomm.h 
  365. objcopy.o: objcopy.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
  366.   $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \
  367.   $(INCDIR)/fopen-same.h bucomm.h 
  368. is-strip.o: is-strip.c 
  369. is-ranlib.o: is-ranlib.c 
  370. not-strip.o: not-strip.c 
  371. nlmheader.o: nlmheader.c ../bfd/bfd.h ../bfd/sysdep.h \
  372.   $(BFDDIR)/hosts/std-host.h $(INCDIR)/fopen-same.h bucomm.h \
  373.   $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h nlmconv.h
  374. nlmconv.o: nlmconv.c ../bfd/bfd.h $(INCDIR)/libiberty.h ../bfd/sysdep.h \
  375.   $(BFDDIR)/hosts/std-host.h $(INCDIR)/fopen-same.h bucomm.h \
  376.   $(BFDDIR)/libnlm.h $(INCDIR)/nlm/common.h \
  377.   $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmconv.h \
  378.   $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
  379.  
  380. stage1: force
  381.     - mkdir stage1
  382.     - mv -f $(STAGESTUFF) stage1
  383.  
  384. stage2: force
  385.     - mkdir stage2
  386.     - mv -f $(STAGESTUFF) stage2
  387.  
  388. stage3: force
  389.     - mkdir stage3
  390.     - mv -f $(STAGESTUFF) stage3
  391.  
  392. against=stage2
  393.  
  394. comparison: force
  395.     for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
  396.  
  397. de-stage1: force
  398.     - (cd stage1 ; mv -f * ..)
  399.     - rmdir stage1
  400.  
  401. de-stage2: force
  402.     - (cd stage2 ; mv -f * ..)
  403.     - rmdir stage2
  404.  
  405. de-stage3: force
  406.     - (cd stage3 ; mv -f * ..)
  407.     - rmdir stage3
  408.  
  409. ######################################################################
  410. # DOCUMENTATION TARGETS
  411. # TeX output
  412. binutils.dvi: $(srcdir)/binutils.texi
  413.     TEXINPUTS=$(TEXIDIR): $$TEXINPUTS $(TEXI2DVI) $(srcdir)/binutils.texi
  414.  
  415. # info file for online browsing
  416. binutils.info: $(srcdir)/binutils.texi
  417.     $(MAKEINFO) -o binutils.info $(srcdir)/binutils.texi
  418.  
  419. $(DEMANGLER_PROG).1: cxxfilt.man Makefile
  420.     sed -e 's/@PROGRAM@/$(DEMANGLER_PROG)/' < $(srcdir)/cxxfilt.man \
  421.         > $(DEMANGLER_PROG).1
  422.  
  423. #   different targets for -ms, -mm, -me
  424. # Try to use a recent texi2roff.  v2 was put on prep in jan91.
  425. # If you want an index, see texi2roff doc for postprocessing 
  426. # and add -i to texi2roff invocations below.
  427. # Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
  428. #    corresponding -e lines when later texi2roff's are current)
  429. # + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
  430. # + @c's deleted explicitly because texi2roff sees texinfo commands in them
  431. # + @   (that's at-BLANK) not recognized by texi2roff, turned into blank
  432. # + @alphaenumerate is ridiculously new, turned into @enumerate
  433.  
  434. # roff output (-ms)
  435. binutils.ms: $(srcdir)/binutils.texi
  436.     sed -e '/\\input texinfo/d' \
  437.         -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
  438.         -e '/^@ifinfo/,/^@end ifinfo/d' \
  439.         -e '/^@c/d' \
  440.         -e 's/{.*,,/{/' \
  441.         -e 's/@ / /g' \
  442.         -e 's/^@alphaenumerate/@enumerate/g' \
  443.         -e 's/^@end alphaenumerate/@end enumerate/g' \
  444.         $(srcdir)/binutils.texi | \
  445.     $(TEXI2ROFF) -ms | \
  446.     sed -e 's/---/\\(em/g' \
  447.     >binutils.ms 
  448.  
  449. # roff output (-mm)
  450. # '@noindent's removed due to texi2roff-2 mm bug; if yours is newer, 
  451. #   try leaving them in
  452. binutils.mm: $(srcdir)/binutils.texi
  453.     sed -e '/\\input texinfo/d' \
  454.         -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
  455.         -e '/^@ifinfo/,/^@end ifinfo/d' \
  456.         -e '/^@c/d' \
  457.         -e 's/{.*,,/{/' \
  458.         -e '/@noindent/d' \
  459.         -e 's/@ / /g' \
  460.         -e 's/^@alphaenumerate/@enumerate/g' \
  461.         -e 's/^@end alphaenumerate/@end enumerate/g' \
  462.         $(srcdir)/binutils.texi | \
  463.     $(TEXI2ROFF) -mm | \
  464.     sed -e 's/---/\\(em/g' \
  465.         >binutils.mm
  466.  
  467. # roff output (-me)
  468. binutils.me: $(srcdir)/binutils.texi
  469.     sed -e '/\\input texinfo/d' \
  470.         -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
  471.         -e '/^@ifinfo/,/^@end ifinfo/d' \
  472.         -e '/^@c/d' \
  473.         -e 's/{.*,,/{/' \
  474.         -e 's/@ / /g' \
  475.         -e 's/^@alphaenumerate/@enumerate/g' \
  476.         -e 's/^@end alphaenumerate/@end enumerate/g' \
  477.         $(srcdir)/binutils.texi | \
  478.     $(TEXI2ROFF) -me | \
  479.     sed -e 's/---/\\(em/g' \
  480.     >binutils.me 
  481.  
  482.  
  483. ######################################################################
  484.  
  485. mostlyclean:
  486.     -rm -f *.o *~ \#* core binutils.?? binutils.???
  487. clean: mostlyclean
  488.     @if [ -d testsuite ] ; then \
  489.       cd testsuite ; $(MAKE) $(FLAGS_TO_PASS) clean ; \
  490.     else true; fi
  491.     -rm -f $(PROGS) underscore.c
  492. distclean:
  493.     @if [ -d testsuite ] ; then \
  494.       cd testsuite ; $(MAKE) $(FLAGS_TO_PASS) distclean ; \
  495.     else true; fi
  496.     -rm -f Makefile config.status sysdep.h *.o *~ \#* core y.* \
  497.         binutils.?? binutils.??s binutils.aux binutils.log binutils.toc
  498.     -rm -f $(PROGS) underscore.c
  499. realclean: clean distclean
  500.     -rm -f $(DISTSTUFF) TAGS
  501.  
  502. etags tags: TAGS
  503.  
  504. TAGS: force
  505.     etags $(INCDIR)/*.h $(srcdir)/*.[hc] 
  506.  
  507. install: all $(DEMANGLER_PROG).1
  508.     for i in $(PROGS) ; do \
  509.       $(INSTALL_XFORM) $$i $(bindir)/`echo $$i | sed -e 's/.new//'` ; \
  510.     done
  511.     for i in $(MANPAGES) ; do \
  512.       $(INSTALL_XFORM1) $(srcdir)/$$i.1 $(man1dir)/$$i.1 ; \
  513.     done
  514.     $(INSTALL_XFORM1) $(DEMANGLER_PROG).1 $(man1dir)/$(DEMANGLER_PROG).1
  515.     -if [ -d $(tooldir) ]; then \
  516.       if [ -d $(tooldir)/bin ]; then true; else mkdir $(tooldir)/bin; fi; \
  517.       for i in $(TOOL_PROGS) ; do \
  518.         j=`echo $$i | sed -e 's/.new//'`; \
  519.         rm -f $(tooldir)/bin/$$j; \
  520.         k=`t='$(program_transform_name)'; echo $$j | sed -e s/x/x/ $$t`; \
  521.         ln $(bindir)/$$k $(tooldir)/bin/$$j >/dev/null 2>/dev/null \
  522.          || $(INSTALL_PROGRAM) $$i $(tooldir)/bin/$$j; \
  523.       done; \
  524.      else true; fi
  525.  
  526. # This little path search is required because in the FSF net releases,
  527. # the info files are included in the source tree, and that may not be
  528. # the same as the build directory.
  529. install-info: binutils.info
  530.     if [ -r binutils.info ]; then \
  531.       dir=. ; \
  532.     else \
  533.       dir=$(srcdir) ; \
  534.     fi ; \
  535.     for i in `cd $$dir; echo binutils.info*` ; do \
  536.         $(INSTALL_DATA) $$dir/$$i $(infodir)/$$i ; \
  537.     done
  538.  
  539. clean-info:
  540.     -rm -rf *.info*
  541.  
  542. # Making a dist:
  543. # cvs rtag binutils-x-yy ld+utils
  544. # cvs co -r binutils-x-yy ld+utils
  545. # Sanitize
  546. # cd {HERE}; make dist [-f Makefile.in]
  547.  
  548. dist: $(DIST_NAME).tar.z
  549.  
  550. diststuff: $(DISTSTUFF)
  551.  
  552. $(DIST_NAME).tar.z:
  553.     cd ../..; rm -f $(DIST_NAME); ln -s devo $(DIST_NAME)
  554.     make diststuff -f Makefile.in
  555.     cd ../ld; make diststuff -f Makefile.in
  556.     cd ../gprof; make diststuff -f Makefile.in
  557.     cd ../texinfo; mv texinfo.tex ..; rm -rf *; mv ../texinfo.tex .
  558.     # Take out texinfo from configurable dirs
  559.     mv ../configure.in tmp; \
  560.       sed -e '/^host_tools=/s/texinfo //' <tmp >../configure.in; rm tmp
  561.     cd ..; chmod og=u `find . -print`
  562.     cd ../..; tar chf - $(DIST_NAME) | gzip >$(DIST_NAME).tar.z
  563.     rm -rf ../../$(DIST_NAME)
  564.  
  565. #-----------------------------------------------------------------------------
  566. #        'STANDARD' GNU/960 TARGETS BELOW THIS POINT
  567. #
  568. # 'VERSION' file must be present and contain a string of the form "x.y"
  569. #-----------------------------------------------------------------------------
  570.  
  571. ver960.c: FORCE
  572.     rm -f ver960.c
  573.     echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
  574.  
  575.  
  576. # Dummy target to force execution of dependent targets.
  577. #
  578. force:
  579.  
  580. # Target to uncomment host-specific lines in this makefile.  Such lines must
  581. # have the following string beginning in column 1: #__<hostname>__#
  582. # Original Makefile is backed up as 'Makefile.old'.
  583. #
  584. # Invoke with:  make make HOST=xxx
  585. #
  586. make:
  587.     -@if test $(HOST)x = x ; then \
  588.         echo 'Specify "make make HOST=???\"; \
  589.         exit 1; \
  590.     fi ; \
  591.     grep -s "^#The next line was generated by 'make make\" Makefile; \
  592.     if test $$? = 0 ; then    \
  593.         echo "Makefile has already been processed with 'make make\";\
  594.         exit 1; \
  595.     fi ; \
  596.     mv -f Makefile Makefile.old; \
  597.     echo "#The next line was generated by 'make make\"     >Makefile ; \
  598.     echo "HOST=$(HOST)"                    >>Makefile ; \
  599.     echo                            >>Makefile ; \
  600.     sed "s/^#__$(HOST)__#//" < Makefile.old            >>Makefile
  601.  
  602. Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
  603.     $(SHELL) ./config.status
  604.  
  605. ### Local Variables: ***
  606. ### mode: fundamental ***
  607. ### page-delimiter: "^# " ***
  608. ### End: ***
  609. ### end of file
  610.